home *** CD-ROM | disk | FTP | other *** search
/ Assassins - Ultimate CD Games Collection 2 / Assassins 2 - Ultimate Games No. 2 (1995)(Weird Science)[!][Amiga-CD32-CDTV].iso / arcade / jar / src / tetris.i < prev    next >
Text File  |  1995-01-01  |  2KB  |  97 lines

  1. ;-----------------------------------------------------------------------------
  2. ; Tetris.i © Copyright 1990 Software Alchemy All Rights Reserved
  3. ; Code generated by Transform © 1990 Software Alchemy All Rights Reserved
  4. ;-----------------------------------------------------------------------------
  5.  
  6.  
  7.     blanks on
  8.  
  9.     public    PiecesMem
  10.     public    ScreenMem
  11. ;    public    AudioMem
  12.  
  13.  
  14.     public    PlayerOneStart
  15.     public    PlayerTwoStart
  16.  
  17.     public    PlayerStats
  18.     public    BlockPos
  19.     public    BlockSpeed
  20.     public    BlockID
  21.  
  22.     public    RndSeed
  23.     public    LevelStuff
  24.     public    Counter
  25.     public    CollapseJunk
  26.     public    ScoreText
  27.     public    LevelText
  28.     public    LayerText
  29.  
  30.     public    LastButton
  31.     public    RotateFlag
  32.     public    BlitRepairAddress
  33.     public    BlitWorkSpace
  34.  
  35.     public    PlayerPort
  36.     public    PlayerArea
  37.     public    PlayerXY
  38.     public    PlayerArea2
  39.  
  40.     public    TetrisShapes
  41.     public    TetrisDetails
  42.     public    TetrisByteMap
  43.     public    TetrisLevels
  44.  
  45.     public    PlayFieldOutline
  46.     public    PlayFieldClear
  47.  
  48.     public    GameVideo
  49.     public    GameVideo2
  50.     public    GameCopper
  51.     public    KeyEvent
  52.     public    BaseSeed
  53.     public    CopperList
  54.     public    CopperPlanes
  55.     public    CopperColors
  56.     public    ColorTable
  57.  
  58.     public    MakeMulu110
  59.     public    DrawBlock
  60.     public    DrawBlockAt
  61.     public    DrawLine
  62.     public    DrawOne
  63.  
  64.     public    DrawScroller
  65.     public    DrawScrollBit
  66.     public    DrawScrollClear
  67.  
  68.     public    Erase
  69.     public    ContinueDraw
  70.     public    RaisersDraw
  71.     public    UnpackPieces
  72.  
  73.     public    PiecesSource
  74.  
  75.     public    PrintText
  76.     public    PrintColumn
  77.     public    ScrollMessage
  78.     public    GetTopaz
  79.  
  80.     ;public    SoundEngineStart        ; Warm up Audio Engine
  81.     ;public    SoundEngineStop            ; Stop Audio Engine
  82.     public    SoundPlay            ; Play Requested Sound D0>>4
  83.     public    SoundStop            ; Stop Requested Sound D0>>4
  84.  
  85.     public    MusicEngineStart
  86.     public    MusicEngineStop
  87.     public    MusicEnginePause
  88.     public    MusicEngineUnPause
  89.  
  90.     public    JustPlayIt
  91.     public    StopTheMusic
  92.  
  93. RECT_X        equ 10            ; Playfield dimensions
  94. RECT_Y        equ 20
  95.  
  96. ; end of tetris.i
  97.